home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / DJGPP / QDDVX102.ZIP / contrib / dvx / inc / qdeck.h < prev    next >
Text File  |  1993-07-15  |  1KB  |  46 lines

  1. /*
  2.  * DESQview/X Socket Library. Copyright (c) 1991 Quarterdeck Office Systems.
  3.  */
  4.  
  5. #ifndef __QDECK_H__
  6. #define __QDECK_H__
  7.  
  8. #include <stdio.h> /* For FILE *pif_open() */
  9.  
  10. #ifndef NO_PROTO
  11.  
  12. #ifdef __cplusplus                      /* for C++ V2.0 */
  13.   extern "C" {   /* do not leave open across includes */
  14. #endif /* __cplusplus */
  15.  
  16. int        system(char *);
  17. unsigned long    pif_exec(char *); /* returns process handle */
  18. int        pif_start(char *);
  19. unsigned long    NewProc(char *,int);
  20. FILE         *pif_open(char *,char **);
  21. void        wait1(unsigned);
  22. void        dvpath(char *); /* Pass buffer, will return "c:\dvx" */
  23. int        CanonicalPath(char *, char *);
  24.  
  25. #ifdef __cplusplus                      /* for C++ V2.0 */
  26.   }
  27. #endif /* __cplusplus */
  28.  
  29. #else /* NO_PROTO */
  30.  
  31. int         system();
  32. unsigned long    pif_exec();
  33. int        pif_start();
  34. unsigned long    NewProc();
  35. FILE         *pif_open();
  36. void         wait1();
  37. void         dvpath();
  38. int         CanonicalPath();
  39.  
  40. #endif /* NO_PROTO */
  41.  
  42. #endif /* __QDECK_H__ */
  43.  
  44.  
  45.  
  46.